* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
}

.popup2Box {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10000000000000000;
}

.popup2 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.8);
}

.popup2>div {
    position: absolute;
    left: 50%;
    top: 50%;

    border-radius: 50%;
    border: 2px solid transparent;
}

.popup2>div:nth-child(1) {
    width: 80%;
    height: 80%;
    border-top: 2px solid#facd89;
    animation: rotateSet 1.8s linear infinite;
}

.popup2>div:nth-child(2) {
    width: 70%;
    height: 70%;
    border-top: 2px solid #acd598;
    animation: rotateSet 1.6s linear infinite;
}

.popup2>div:nth-child(3) {
    width: 60%;
    height: 60%;
    border-top: 2px solid #89cefa;
    animation: rotateSet 1.5s linear infinite;
}

@keyframes rotateSet {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-moz-keyframes rotateSet {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes rotateSet {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-o-keyframes rotateSet {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.popup3,
.popup4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    opacity: 1;
    transition: all 0.3s ease;
}

.popup3>div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
}

.popup3>div>img {
    position: absolute;
    width: 16px;
    height: 17px;
    right: 8px;
    top: 8px;
    cursor: pointer;
}

.popup5 {
    position: fixed;
    left: 10px;
    top: 20%;
    padding: 42px 0;
}

.popup5::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    left: 0;
    top: 0;
    background: radial-gradient(#bfbfbf 24%, white 100%);
}

.popup5>ul {
    margin-left: 17px;
}

.popup5>ul>li {
    margin-bottom: 16px;
    height: 16px;
    line-height: 16px;
    position: relative;
    color: #404040;
}

.popup5>ul>li span {
    font-size: 16px;
    cursor: pointer;
}

.popup5>ul>li:last-child {
    margin-bottom: 0;
}

.popup5>ul>li::after,
.popup5>ul>li::before {
    position: absolute;
    content: "";
}

.popup5>ul>li::after {
    width: 5px;
    height: 5px;
    background-color: #bfbfbf;
    border-radius: 50%;
    top: 50%;
    left: -19px;
    transform: translate(0, -50%);
}

.popup5>ul>li::before {
    width: 9px;
    height: 9px;
    border: solid 1px transparent;
    border-radius: 50%;
    top: 50%;
    left: -22px;
    transform: translate(0, -50%);
}

.popup5>ul>li:hover span {
    color: #ff9203;
}

.popup5>ul>li:hover::after {
    background-color: #ff9203;
}

.popup5>ul>li:hover::before {
    border: solid 1px #ff9203;
}

.popup5>ul .select {
    color: #ff9203;
}

.popup5>ul .select::after {
    background-color: #ff9203;
}

.popup5>ul .select::before {
    border: solid 1px #ff9203;
}

.popupCollection {
    width: 52px;
    color: #666666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popupCollection .checkbox {
    width: 22px;
    height: 20px;
    position: relative;
}



.popupCollection .checkbox>input {
    opacity: 0;
    position: absolute;
    width: 22px;
    height: 20px;
    z-index: 2;
    left: 0;
    top: 0;
    cursor: pointer;
}

.popupCollection .checkbox input:checked~span {
    background: url("../img/shoucang1.png") no-repeat;
    background-size: 20px 18px;
}

.popupCollection .checkbox>span {
    position: absolute;
    width: 22px;
    height: 20px;
    z-index: 3;
    left: 0;
    top: 0;
    background: url("../img/shoucang2.png") no-repeat;
    background-size: 20px 18px;
    cursor: pointer;
}

.popupCollection span:checked~.checkbox span {
    background: url("../img/shoucang1.png") no-repeat;
    background-size: 20px 18px;
}

.fx {
    display: flex;
    margin-left: 21px;
    align-items: center;
    justify-content: space-between;
    width: 52px;
    cursor: pointer;
}

.fx div {
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url("../img/fenxiang1.png") no-repeat;
    background-size: 20px 20px;
}

.fx span {
    display: block;
    color: #666666;
    font-size: 14px;
}

.popupCollection:hover .checkbox span {
    color: #0f7c87;
    background: url("../img/shoucang3.png") no-repeat;
    background-size: 20px 18px;
}

.fx:hover div {
    background: url("../img/fenxiang2.png") no-repeat;
    background-size: 20px 20px;
}

.popupCollection:hover span,
.fx:hover span {
    color: #0f7c87;
}



.xintips {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: #00000030;
    z-index: 1000;
}

.xintips .tipsBox {
    position: absolute;
    width: 360px;
    background: #FFFFFF;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    padding: 0 10px;
    padding-bottom: 10px;
}

.xintips .tipsBox .closebut {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
    background: url("../img/close.png") no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}

.xintips .tipsBox .tipsBoxTitle {
    height: 42px;
    width: 340px;
    text-align: center;
    line-height: 42px;
    font-size: 16px;
    font-family: Source Han sans-serif;
    color: #333333;
    border-bottom: 1px solid #0099AD;
}

.xintips .tipsBox .tipsBoxText {
    font-size: 14px;
    font-family: Source Han sans-serif;
    font-weight: 400;
    line-height: 20px;
    color: #9D9D9D;
    padding-top: 10px;
    padding-bottom: 13px;
    text-align: center;
}

.xintips .tipsBox .tipsBoxButBox {
    display: flex;
    height: 30PX;
    display: flex;
    justify-content: space-between;
}

.xintips .tipsBox .tipsBoxButBox>div {
    width: 165px;
    height: 30px;
    border-radius: 2px;
    line-height: 30px;
    font-size: 14px;
    font-family: Source Han sans-serif;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
}

.xintips .tipsBox .tipsBoxButBox>.otherBut {
    width: 100%;
    background: #0099AD !important;
    color: #fff !important;
}

.xintips .tipsBox .tipsBoxButBox>div:nth-child(1) {
    color: #333333;
    background: #EEEEEE;
}

.xintips .tipsBox .tipsBoxButBox>div:nth-child(2) {
    color: #ffffff;
    background: #0099AD;
}

#breadcrumb {
    display: flex;
    font-family: Source Han sans-serif;
}

#breadcrumb .breadcrumbItem {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #666666;
    display: flex;
}

#breadcrumb .breadcrumbItem a {
    color: #666666;
    text-decoration: none;
}

#breadcrumb .breadcrumbItem::after {
    display: block;
    content: "";
    width: 22px;
    height: 22px;
    background: url("../img/BreadcrumbImg.png") no-repeat;
    background-size: 100% 100%;
}

#breadcrumb .breadcrumbItem a:hover {
    color: #0099AD;
}

#breadcrumb .breadcrumbItem:last-child::after {
    display: none;
}

.addresssDataBox {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000050;
    z-index: 1000;
    font-family: Source Han sans-serif;
}

.addresssDataBox .addressListBox {
    width: 580px;
    height: 400px;
    background: #FFFFFF;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10px;
    /*定义滚动条轨道 内阴影+圆角*/
    /*定义滑块 内阴影+圆角*/
}

.addresssDataBox .addressListBox>.titile {
    text-align: center;
    height: 42px;
    border-bottom: 1px solid #0099AD;
    line-height: 42px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    position: relative;
}

.addresssDataBox .addressListBox>.titile>.add {
    position: absolute;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #0099AD;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    cursor: pointer;
}

.addresssDataBox .addressListBox>.titile>.add::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url("../img/add1.png") no-repeat;
    background-size: 100% 100%;
    margin-right: 4px;
}

.addresssDataBox .addressListBox>.list {
    margin-top: 12px;
    max-height: 331px;
    overflow: hidden;
    overflow-y: auto;
}

.addresssDataBox .addressListBox>.list .addressItem {
    width: 540px;
    display: flex;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 2px;
    padding: 10px 12px 14px 10px;
    margin-bottom: 12px;
}

.addresssDataBox .addressListBox>.list .addressItem>.left {
    width: 442px;
    cursor: pointer;
}

.addresssDataBox .addressListBox>.list .addressItem>.left>div:nth-child(1) {
    height: 22px;
    font-size: 16px;
    font-weight: bold;
    line-height: 0px;
    color: #333333;
    line-height: 22px;
    display: flex;
}

.addresssDataBox .addressListBox>.list .addressItem>.left>div:nth-child(1)>span {
    display: block;
    width: 36px;
    height: 22px;
    border: 1px solid #CC7969;
    border-radius: 2px;
    margin-left: 10px;
    font-size: 12px;
    font-weight: 400;
    color: #CC7969;
    text-align: center;
    line-height: 21px;
}

.addresssDataBox .addressListBox>.list .addressItem>.left>div:nth-child(2) {
    margin-top: 10px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.addresssDataBox .addressListBox>.list .addressItem>.right {
    margin-left: 18px;
    width: 58px;
    display: none;
}

.addresssDataBox .addressListBox>.list .addressItem>.right .but {
    display: flex;
    justify-content: space-between;
}

.addresssDataBox .addressListBox>.list .addressItem>.right .but>div {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.addresssDataBox .addressListBox>.list .addressItem>.right .but .edit {
    background: url("../img/edit.png") no-repeat;
    background-size: 100% 100%;
}

.addresssDataBox .addressListBox>.list .addressItem>.right .but .delete {
    background: url("../img/delete2.png") no-repeat;
    background-size: 100% 100%;
}

.addresssDataBox .addressListBox>.list .addressItem>.right>p {
    font-size: 14px;
    font-weight: 400;
    color: #0099AD;
    line-height: 20px;
    margin-top: 10px;
    cursor: pointer;
}

.addresssDataBox .addressListBox>.list .addressItem:last-child {
    margin-bottom: 0px;
}

.addresssDataBox .addressListBox>.list .addressItem:hover {
    background: #F7F7F7;
    height: 78px;
}

.addresssDataBox .addressListBox>.list .addressItem:hover .right {
    display: block;
}

.addresssDataBox .addressListBox .list::-webkit-scrollbar {
    width: 2px;
    /*滚动条宽度*/
    height: 4px;
    /*滚动条高度*/
}

.addresssDataBox .addressListBox .list::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    border-radius: 10px;
    /*滚动条的背景区域的圆角*/
    background: #DDDDDD;
    /*滚动条的背景颜色*/
}

.addresssDataBox .addressListBox .list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #0099AD;
}

.addresssDataBox .editBox {
    width: 580px;
    height: 400px;
    background: #FFFFFF;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px;
    z-index: 10;
    display: none;
}

.addresssDataBox .editBox .title {
    height: 64px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #0099AD;
    align-items: center;
}

.addresssDataBox .editBox .title>.name {
    line-height: 24px;
    text-indent: 4px;
    border-left: 4px solid #0099AD;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.addresssDataBox .editBox .title .delete {
    width: 16px;
    height: 16px;
    background: url("../img/close.png") no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}

.addresssDataBox .editBox .addressInformation {
    padding-top: 6px;
}

.addresssDataBox .editBox .addressInformation>.item {
    margin-top: 14px;
    display: flex;
}

.addresssDataBox .editBox .addressInformation>.item>.label {
    width: 70px;
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    text-align: right;
}

.addresssDataBox .editBox .addressInformation>.item>.textarea {
    margin-left: 10px;
    width: 460px;
    height: 100px;
    background: #FFFFFF;
    opacity: 1;
    border-radius: 4px;
}

.addresssDataBox .editBox .addressInformation>.item>.textarea>textarea {
    display: block;
    width: 440px;
    height: 90px;
    outline: none;
    border: none;
    resize: none;
    border: 1px solid #EEEEEE;
    padding: 5px 10px;
}

.addresssDataBox .editBox .addressInformation>.item>.textarea>textarea:focus {
    border: 1px solid #0099AD;
}

.addresssDataBox .editBox .addressInformation>.item>.textarea>textarea::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 2px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 2px;
}

.addresssDataBox .editBox .addressInformation>.item>.textarea>textarea::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
    background: #0099AD;
}

.addresssDataBox .editBox .addressInformation>.item>.textarea>textarea::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}

.addresssDataBox .editBox .addressInformation>.item>.input {
    margin-left: 10px;
}

.addresssDataBox .editBox .addressInformation>.item>.input>input {
    width: 200px;
    height: 30px;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    opacity: 1;
    border-radius: 4px;
    outline: none;
    padding-left: 10px;
    padding-right: 5px;
    font-weight: 400;
    font-size: 14px;
}

.addresssDataBox .editBox .addressInformation>.item>.input>input:focus {
    border: 1px solid #0099AD;
}

.addresssDataBox .editBox .addressInformation>.item>.option {
    display: flex;
    margin-left: 10px;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address {
    width: 148px;
    height: 30px;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    margin-right: 8px;
    padding-left: 10px;
    padding-right: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address>.addClassText {
    width: 113px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address .addressList {
    position: absolute;
    width: 200px;
    height: 0px;
    border: none;
    border-radius: 4px;
    background-color: #FFF;
    box-sizing: border-box;
    margin: 5px 0;
    left: 0;
    top: 30px;
    overflow: hidden;
    transition: all .1s ease;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address .addressList .listBox {
    margin-top: 2px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 98%;
    z-index: 11;
    background: #fff;
    overflow: hidden;
    overflow-y: auto;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address .addressList .listBox>.list {
    list-style: none;
    padding: 6px 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address .addressList .listBox>.list>li {
    font-size: 14px;
    padding: 0 15px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #606266;
    height: 34px;
    line-height: 34px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address .addressList .listBox>.list .selected {
    color: #0099AD;
    font-weight: 700;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address .addressList .listBox>.list>li:hover {
    background-color: #F5F7FA;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address .addressList .listBox::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 2px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 2px;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address .addressList .listBox::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
    background: #0099AD;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address .addressList .listBox::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address>.addressList::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    top: -5px;
    left: 30px;
    background: #fff;
    border: 1px solid #E4E7ED;
    transform: rotate(45deg);
    z-index: 1;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address:last-child {
    margin-right: 0px;
}

.addresssDataBox .editBox .addressInformation>.item>.option .selectCurrent .addressList {
    height: 180px;
    border: 1px solid #E4E7ED;
}

.addresssDataBox .editBox .addressInformation>.item>.option>.address::after {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: url("../img/addressturn.png") no-repeat;
    background-size: 100% 100%;
    transition: all .3s ease;
}

.addresssDataBox .editBox .addressInformation>.item>.option .selectCurrent::after {
    transform: rotate(-180deg);
}

.addresssDataBox .editBox>.but {
    margin-top: 33px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addresssDataBox .editBox>.but>div {
    width: 265px;
    height: 30px;
    text-align: center;
    background: #0099AD;
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    color: #F7F7F7;
    cursor: pointer;
}

.popupImg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    opacity: 1;
    transition: all 0.3s ease;
    display: none;
}

.popupImg>div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.popupImg>div>.del {
    position: absolute;
    top: 10px;
    right: -50px;
    width: 30px;
    height: 30px;
    background: url("../img/close2.png") no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}

.popupImg>div>a {
    display: block;
}

.popupImg>div>a>img {
    max-width: 100%;
    max-height: 100%;
}